What is the difference between arrays and collection?
2221
27-Aug-2014
Sumit Kesarwani
27-Aug-2014Array:
You need to specify the size of an array at the time of its declaration. It cannot be resized dynamically.
The members of an array should be of the same data type.
Collection:
The size of a collection can be adjusted dynamically, as per the user's requirement. It does not have fixed size.
Collection can have elements of different types.